home *** CD-ROM | disk | FTP | other *** search
- '****************************GETCPU2.BAS************************
- 'Fann.....tastic! just made a Quick Library from GETCPU2.OJB by
- 'following the information in the QuickBASIC 4.5 "Programming in BASIC"
- 'book (page 386).
- '
- 'The command is:
- 'LINK /q GETCPU2.OBJ
- '
- 'and then follow the prompts, with {Enter} until it asks for:
- '
- ' Library[LIB]
- '
- 'then type in the =correct= QuickBASIC library as....
- '
- ' BQLB45.LIB
- '
- 'John De Palma on CompuServe 76076,571
- '
- '12/8/94
- '================================================================
-
- DECLARE FUNCTION GetCPU2%
- 'get rid of the leading space
- PRINT "CPU = 80"; LTRIM$(STR$(GetCPU2%))
-
-